36db0d8f2567dbad1be546a4c0c77c963c51f76c,controller/src/test/java/org/jboss/as/controller/transform/description/RecursiveDiscardAndRemoveTestCase.java,RecursiveDiscardAndRemoveTestCase,testDiscardResource,#,107
Before Change
Assert.assertNull(transformed.getFailureDescription());
//Check that the op gets discarded for the wildcard entry child
op = Util.createAddOperation(PathAddress.pathAddress(PATH, DISCARDED_WILDCARD_ENTRY, DISCARDED_CHILD));
transformed = transformOperation(op);
Assert.assertNull(transformed.getTransformedOperation());
Assert.assertFalse(transformed.rejectOperation(success()));
Assert.assertNull(transformed.getFailureDescription());
After Change
discardResourceOperationsTest(PathAddress.pathAddress(PATH, DISCARDED_SPECIFIC));
//Check that the op gets discarded for the wildcard entry child
discardResourceOperationsTest(PathAddress.pathAddress(PATH, DISCARDED_WILDCARD_ENTRY, DISCARDED_CHILD));
//Check that the op gets discarded for the specific entry child
discardResourceOperationsTest(PathAddress.pathAddress(PATH, DISCARDED_SPECIFIC, DISCARDED_CHILD));